home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970929-19971216 / 000081_news@newsmaster….columbia.edu _Mon Oct 13 11:17:02 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id LAA22267
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Mon, 13 Oct 1997 11:17:01 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id LAA23212
  7.     for kermit.misc@watsun; Mon, 13 Oct 1997 11:17:00 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: french chars: solaris <--- kermit ----> netcom(sunos)?
  12. Date: 13 Oct 1997 15:16:59 GMT
  13. Organization: Columbia University
  14. Lines: 75
  15. Message-ID: <61te1b$dol$1@apakabar.cc.columbia.edu>
  16. References: <dkcombsEHzvM5.4K1@netcom.com>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:7857
  19.  
  20. In article <dkcombsEHzvM5.4K1@netcom.com>,
  21. David Combs <dkcombs@netcom.com> wrote:
  22. : Newsgroups: comp.protocols.kermit.misc
  23. : Subject: kermit & suns: reading french accents?
  24. : Summary: 
  25. : Followup-To: 
  26. : Distribution: world
  27. : Organization: Netcom On-Line Services
  28. : Keywords: 
  29. : If I download a file containing eg french, onto
  30. : my sun with solaris, and "more" the file, I can
  31. : see the accents fine; they display above the
  32. : chars, just the way you'd like.
  33. : But when logged into shell account on netcom,
  34. : and do the "more" THERE, or read mail (via unix
  35. : "mail" prog), or read a web page via lynx,
  36. : those chars do NOT show up on my screen --
  37. : it looks like misspelled french.
  38. : (Oh, the download works ok because I tar
  39. : and gz it, and use -i, I suppose that's why)
  40. : Anyway, what do I set to be able to SEE the
  41. : french, WHILE logged in into netcom shell acct:
  42. : 1: on the local computer (solaris -- probably already
  43. :      set ok, since "more" here works ok),
  44. : 2: for KERMIT, which I use to dial into netcom,
  45. : 3: and for the foreign computer, netcom's
  46. :     sparcstations running sunos 4.x.
  47. : I grew up with 7bit ascii, clearly know 
  48. :   nothing of this new 8bit stuff, and
  49. :    haven't a clue about the settings.
  50. There are many issues here:
  51.  
  52.  . Different computers might use different encodings
  53.    for non-ASCII characters, and when transferring
  54.    files containing non-ASCII characters between such
  55.    computers, you need to specify the source and
  56.    destination character sets.  Kermit software is
  57.    the only file-transfer software that lets you do
  58.    this -- but it's not telepathic.  You have to tell
  59.    it what the character sets are ("set file character-set",
  60.    "set transfer character-set").
  61.  
  62.  . When viewing non-ASCII with a terminal or emulator,
  63.    you must set the terminal or emulator to the same
  64.    encoding that is used on the host.  Again, Kermit
  65.    software lets you do this, but you have to tell it
  66.    exactly what to do ("set terminal character-set").
  67.  
  68.  . If the encoding uses 8-bit bytes, you have to take all
  69.    the necessary measures to make the connection 8-bit
  70.    clean.  In Kermit, the relevant commands are "set parity
  71.    none", "set terminal bytesize 8", "set command bytesize 8".
  72.    But you also need to set up your host for this, and the
  73.    command for this depends on your host ("set term /eight",
  74.    "stty pass8", "stty cs8", etc).  In addition, you have
  75.    to make sure that any intervening devices or communication
  76.    methods (telnet or rlogin from terminal server, etc) are
  77.    themselves 8-bit clean, and again, the method for doing
  78.    this depends on the specific device.
  79.  
  80. The current version of C-Kermit is 6.0:
  81.  
  82.   http://www.columbia.edu/kermit/ck60.html
  83.  
  84. The manual includes an entire chapter on character sets
  85. and how to use them.
  86.  
  87. - Frank